:root{
  --bg1:#ffe2f0;
  --bg2:#ffffff;
  --accent:#ff6fb3;
  --shadow: rgba(255, 120, 180, 0.35);
  --text:#2a0f1f;
  --text2:#4a2a3a;
  --card: rgba(255,255,255,.72);
  --stroke: rgba(0,0,0,.08);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html, body { height:100%; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  
  /*padding-top: 70px;*/
}

a{ color: inherit; }
.container{ width:min(1100px, 100%); margin:0 auto; padding: 0 clamp(18px, 4vw, 28px); }

/* Top Nav */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.55);
  border-bottom: 1px solid var(--stroke);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.img-left{
	 display: block;
  margin: 16px 0 0;   /* kein auto → links */
  max-width: 100%;
  height: auto;
}
.brand-badge{
  width: 34px; height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff9fd0);
  box-shadow: 0 14px 28px rgba(255, 90, 160, .22);
}
.navlinks{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  /*justify-content:flex-end;*/
  justify-content:flex-between;
}
.navlinks a{
  text-decoration:none;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text2);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.navlinks a:hover{
  background: rgba(255,255,255,.65);
  border-color: var(--stroke);
  transform: translateY(-1px);
}
.navlinks a.active{
  background: rgba(255,255,255,.85);
  border-color: rgba(255,111,179,.35);
  color: var(--text);
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding: clamp(22px, 5vw, 56px) 0;
  min-height: calc(100vh - 58px);
  display:grid;
  align-items:center;
  background:
    radial-gradient(1200px 600px at 20% 20%, var(--bg1), transparent 60%),
    radial-gradient(900px 500px at 80% 70%, #ffd6ea, transparent 60%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
}



.blob{
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .55;
  animation: blobFloat 10s ease-in-out infinite;
  pointer-events:none;
  mix-blend-mode: multiply;
}
.blob.one{ background:#ffb6da; top:-160px; left:-140px; animation-delay:-2s; }
.blob.two{ background:#ffc7e6; bottom:-220px; right:-180px; animation-delay:-6s; }

@keyframes blobFloat{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(18px,-14px) scale(1.06); }
}

.wrap{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(18px, 4vw, 48px);
  align-items:center;
  position:relative;
  z-index:1;
}
@media (max-width: 700px){
  .wrap{ grid-template-columns: 1fr; text-align:center; }
}

/* Typography */
.kicker{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,111,179,.25);
  background: rgba(255,255,255,.7);
  color: var(--text2);
  font-weight: 650;
  font-size: 13px;
  margin-bottom: 12px;
}
h1{
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  animation: fadeUp .9s ease both;
}
p{
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  color: var(--text2);
  max-width: 70ch;
  animation: fadeUp 1.05s ease both;
  animation-delay: .1s;
}
ul{ margin-top: 12px; padding-left: 18px; color: var(--text2); }
li{ margin: 6px 0; }

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: translateY(0); }
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
  animation: fadeUp 1.15s ease both;
  animation-delay: .2s;
}
@media (max-width: 700px){
  .cards{ grid-template-columns: 1fr; }
}
.card{
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}
.card h3{ font-size: 16px; margin-bottom: 6px; }
.card p{ font-size: 14px; max-width: unset; animation:none; }

/* Buttons */
.cta{
  display:flex;
  gap:12px;
  margin-top: 18px;
  flex-wrap: wrap;
  animation: fadeUp 1.15s ease both;
  animation-delay: .2s;
}
@media (max-width: 700px){
  .cta{ justify-content:center; }
  p{ margin: 0 auto; }
}

.btn{
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: white;
  color: var(--text);
  text-decoration:none;
  font-weight: 650;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), #ff9fd0);
  color:white;
  border-color: transparent;
  box-shadow: 0 16px 35px rgba(255, 90, 160, .25);
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

/* Orchid */
.orchid{
  width: min(520px, 90vw);
  height: auto;
  display:block;
  margin-left:auto;
  filter: drop-shadow(0 22px 42px var(--shadow));
  transform-origin: center;
  opacity:0;
  animation: orchidFade 1.2s ease forwards, orchidFloat 7.5s ease-in-out infinite;
  animation-delay: 0s, 1.2s;
  will-change: transform;
}
@media (max-width: 700px){
  .orchid{ 
    display: block;
    margin: 14px auto 0;   /* links/rechts auto = zentriert */
    margin-left: auto;     /* überschreibt Desktop */
    margin-right: auto;
    justify-self: center;  /* falls Grid wirkt */ }
}
@keyframes orchidFade{ to{ opacity:1; } }
@keyframes orchidFloat{
  0%,100%{ transform: translateY(0) scale(1); }
  50%{ transform: translateY(-18px) scale(1.03); }
}

/* Footer */
footer{
  border-top: 1px solid var(--stroke);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(12px);
}
.footer-inner{
  padding: 18px 0;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
  color: var(--text2);
  font-size: 14px;
}
.footer-links{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.footer-links a{
  text-decoration:none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.footer-links a:hover{
  background: rgba(255,255,255,.7);
  border-color: var(--stroke);
}

#map{
  width: 100%;
  height: 280px;
  border-radius: 14px;
  margin-top: 10px;
  border: 1px solid rgba(0,0,0,.08);
}


/* Forms / Tables */
.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-top: 10px;
}
label{ font-size: 13px; color: var(--text2); }
input, textarea, select{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.85);
  outline: none;
  font: inherit;
}
textarea{ min-height: 120px; resize: vertical; }
.table{
  width:100%;
  border-collapse: collapse;
  margin-top: 10px;
  overflow:hidden;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.78);
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  text-align:left;
  vertical-align: top;
  color: var(--text2);
}
.table th{ color: var(--text); font-size: 13px; }
.table tr:last-child td{ border-bottom: none; }

/* FAQ */
details{
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  padding: 12px 14px;
}
details + details{ margin-top: 10px; }
summary{
  cursor:pointer;
  font-weight: 700;
  color: var(--text);
}
details p{ margin-top: 8px; font-size: 14px; animation:none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .orchid, .blob, h1, p, .cta, .cards{ animation: none !important; opacity:1 !important; }
}
